home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 40 / Issue 40.iso / pc / Software / 00017_gotoShopMaster.ls < prev    next >
Encoding:
Text File  |  2000-11-10  |  382 b   |  20 lines

  1. on mouseWithin
  2.   cursor(280)
  3.   put "Click to install the special version of ShopMaster 3 Express - PC Only" into member "InfoField"
  4. end
  5.  
  6. on mouseLeave
  7.   cursor(0)
  8.   put EMPTY into member "InfoField"
  9. end
  10.  
  11. on mouseDown
  12.   if the platform contains "Windows" then
  13.     go("Title1", "Authoring")
  14.   else
  15.     if the platform contains "Macintosh" then
  16.       nothing()
  17.     end if
  18.   end if
  19. end
  20.